home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
-
- <!-- Styles //-->
- <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
- <?xml-stylesheet href="chrome://mozapps/skin/pref/pref.css" type="text/css"?>
- <?xml-stylesheet href="chrome://browser/skin/pref/pref.css" type="text/css"?>
-
- <!-- Locale info //-->
- <!DOCTYPE overlay [
- <!ENTITY % fasterfoxDTD SYSTEM "chrome://fasterfox/locale/fasterfox.ent">
- %fasterfoxDTD;
- ]>
-
- <overlay id="fasterfoxOverlay"
- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
-
- <!-- This imports our javascript. //-->
- <script type="application/x-javascript" src="chrome://fasterfox/content/fasterfoxOverlay.js"/>
- <script type="application/x-javascript" src="chrome://fasterfox/content/listener-fasterfox.js"/>
-
- <script type="application/x-javascript">
- <![CDATA[
- window.addEventListener("load", FF_init, false);
-
- //window.top.addEventListener("pageshow", doEnhancedPrefetch, false);
-
- window.addEventListener("load", function() {
- var appcontent = window.document.getElementById("appcontent");
- if (appcontent) {
- appcontent.addEventListener("DOMContentLoaded", doEnhancedPrefetch, false);
- }
- }, false);
-
- window.addEventListener("unload", FF_uninit, false);
- ]]></script>
-
- <!-- Add Fasterfox Page Load Timer to the Status Bar //-->
- <popupset id="mainPopupSet">
- <tooltip id="fasterfox-popup" insertafter="backMenu">
- <vbox flex="1">
- <label id="fasterfox-popup-label" value="&pageload.pageLoadTimer;"/>
- </vbox>
- </tooltip>
- <popup id="fasterfox-context-menu">
- <!-- TODO: Add Current Page to Whitelist -->
- <menuitem label="&pageload.options;" oncommand="ff_openOptions();" />
- <menuitem label="&pageload.hideTimer;" oncommand="ff_showTimer(false);" />
- <menuitem label="&pageload.clearCache;" oncommand="ff_clearCache();" />
- </popup>
- </popupset>
- <statusbar id="status-bar">
- <statusbarpanel id="fasterfox-statusbar" insertafter="page-report-button" tooltip="fasterfox-popup" context="fasterfox-context-menu">
- <hbox>
- <image src="chrome://fasterfox/skin/icons.png" />
- <label id="fasterfox-label" value="Fasterfox" />
- </hbox>
- </statusbarpanel>
- </statusbar>
-
- </overlay>
-
-